projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e66d1cb
)
power: regulator: s2mps11: Add enable delay
author
Krzysztof Kozlowski
<
[email protected]
>
Wed, 6 Mar 2019 18:37:55 +0000
(19:37 +0100)
committer
Minkyu Kang
<
[email protected]
>
Mon, 11 Mar 2019 06:53:19 +0000
(15:53 +0900)
According to datasheet, the output on LDO regulators will start
appearing after 10-15 us.
Signed-off-by: Krzysztof Kozlowski <
[email protected]
>
Tested-by: Anand Moon <
[email protected]
>
Signed-off-by: Minkyu Kang <
[email protected]
>
drivers/power/regulator/s2mps11_regulator.c
patch
|
blob
|
history
diff --git
a/drivers/power/regulator/s2mps11_regulator.c
b/drivers/power/regulator/s2mps11_regulator.c
index 723d27f67c9a2550c638096d05036ccccce20beb..67d1f9689de38ea50bf3166d0e9fbf0abe39da04 100644
(file)
--- a/
drivers/power/regulator/s2mps11_regulator.c
+++ b/
drivers/power/regulator/s2mps11_regulator.c
@@
-551,7
+551,16
@@
static int ldo_get_enable(struct udevice *dev)
static int ldo_set_enable(struct udevice *dev, bool enable)
{
- return s2mps11_ldo_enable(dev, PMIC_OP_SET, &enable);
+ int ret;
+
+ ret = s2mps11_ldo_enable(dev, PMIC_OP_SET, &enable);
+ if (ret)
+ return ret;
+
+ /* Wait the "enable delay" for voltage to start to rise */
+ udelay(15);
+
+ return 0;
}
static int ldo_get_mode(struct udevice *dev)